bufio.Writer.n (field)
27 uses
bufio (current package)
bufio.go#L585: n int
bufio.go#L633: b.n = 0
bufio.go#L642: if b.n == 0 {
bufio.go#L645: n, err := b.wr.Write(b.buf[0:b.n])
bufio.go#L646: if n < b.n && err == nil {
bufio.go#L650: if n > 0 && n < b.n {
bufio.go#L651: copy(b.buf[0:b.n-n], b.buf[n:b.n])
bufio.go#L653: b.n -= n
bufio.go#L657: b.n = 0
bufio.go#L662: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L669: return b.buf[b.n:][:0]
bufio.go#L673: func (b *Writer) Buffered() int { return b.n }
bufio.go#L687: n = copy(b.buf[b.n:], p)
bufio.go#L688: b.n += n
bufio.go#L697: n := copy(b.buf[b.n:], p)
bufio.go#L698: b.n += n
bufio.go#L711: b.buf[b.n] = c
bufio.go#L712: b.n++
bufio.go#L741: size = utf8.EncodeRune(b.buf[b.n:], r)
bufio.go#L742: b.n += size
bufio.go#L767: n = copy(b.buf[b.n:], s)
bufio.go#L768: b.n += n
bufio.go#L777: n := copy(b.buf[b.n:], s)
bufio.go#L778: b.n += n
bufio.go#L807: m, err = r.Read(b.buf[b.n:])
bufio.go#L816: b.n += m
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)